home *** CD-ROM | disk | FTP | other *** search
/ CICA 1993 April / CICA MS Windows - April 1993.iso / unzipped / programr / tp / wint_t / install.bat next >
DOS Batch File  |  1991-10-10  |  1KB  |  43 lines

  1. echo off
  2. REM   Revised install program 10/91  DRT
  3. cls
  4. echo     ┌────────────────────────────────────────────────┐
  5. echo     │                    INSTALL                     │
  6. echo     │            Turbo Pascal for Windows            │
  7. echo     │   Turbo Utilities and Tips & Techniques Disk   │
  8. echo     │   Copyright (c) 1991 by Borland International  │
  9. echo     └────────────────────────────────────────────────┘
  10. echo  
  11. if %1x==x goto ParmErr
  12. if %2x==x goto ParmErr
  13. echo  
  14. echo   Ready to install from %1 to %2
  15. echo   This will overwrite older versions of the files
  16. echo   Press Ctrl-C to stop or any key to continue...
  17. pause > nul
  18. md %2 > nul
  19. cd %2
  20. copy %1*.* %2
  21. rem  /O for overwrite  /D for install into subdirectories
  22. for  %%i in (%2\*.zip) do %2\unzip %%i %2 /o /d
  23. goto Success
  24. :ParmErr
  25. echo   Install %1 %2 %3 %4 %5
  26. echo  
  27. echo   Error:  Missing or illegal parameters
  28. echo  
  29. echo   Usage:  INSTALL SRC: DEST:
  30. echo     e.g.  INSTALL A: C:\TPWBONUS
  31. goto Fail
  32. echo  
  33. :Fail
  34. echo   INSTALL unsuccessful
  35. goto End
  36. :Success
  37. cls
  38. echo   INSTALL successful
  39. echo   Enjoy your TPW Utilities and Demos!
  40. echo  
  41. :End
  42. echo  
  43.